home *** CD-ROM | disk | FTP | other *** search
- function dispatchEvent (action, source) {
- var evt = new NOF.EventObject(action, source);
- prjPrefApp.dispatchEvent(evt);
- }
-
- function onLoad() {
- dispatchEvent("Load", null);
- }
-
- function onSelect(isFocusEnabled) {
- dispatchEvent("Select", null);
- }
-
- /*
- function onLock() {
- dispatchEvent("Lock", null);
- }
- */
-
- function onColumnSort(colId) {
- dispatchEvent("ColumnSort", colId);
- }
-
- function onWriteSites() {
- dispatchEvent("WriteSites", null);
- }
-
- function onWriteSitesOnTop() {
- dispatchEvent("WriteSitesOnTop", null);
- }
-
- function onWriteSitesOnBottom() {
- dispatchEvent("WriteSitesOnBottom", null);
- }
-
- function onSave() {
- dispatchEvent("Save", null);
- }
-
- function onRemove() {
- dispatchEvent("Remove", null);
- }
-
- function onCancel() {
- dispatchEvent("Cancel", null);
- }
-
- function onSetTopPage() {
- dispatchEvent("SetTopPage", null)
- }
-
- function onSetTopPageCheckBox() {
- dispatchEvent("SetTopPageCheckBox", null)
- }